2 ראיונות של שעה עם הפסקה של רבע שעה ביניהן, על מנת לקבל ראיון יש מבחן בית.
שאלות מתוך הראיון
שאלת ליטקוד: פרש מנסה לנוע על לוח שחמט (מטריצה n על n), נרצה לדעת מה כל המסלולים החוקיים שלו על הלוח. כלומר צריך להחזיר מערך עם כל המסלולים החוקיים שלו במטריצה.
הגשתי קו"ח דרך חבר בחברה, לאחר שבוע קיבלתי מייל עם מבחן בית שכולל 2 שאלות ליטקוד אחת קלה והשנייה בינונית-קשה. אחרי השאלות הטכניות יש שאלון אישיות והתאמה
שאלות מתוך הראיון
השוואה בין שני מערכים, תכנות דינאמי 2D שכולל עבודה עם סבסטרינגים וויילד קארד
An AWS client has brought servers and databases from data centers
in different parts of the world for their application. For simplicity, let's assume all the servers and data centers are located on a 1- dimensional line.
You have been given the task of optimizing the network connection. Each data center must be connected to a server. The positions of n data centers and n servers are given in the form of arrays. Any particular data center, center[1], can deliver to any particular server destination, destination[J]. The lag is defined distance between a data center at location x and a lerver destination at location yis | x- yl, i.e., the absolute difference between x and y. Determine the minimum lag to establish the entire network.
Example
There are n = 3 connections, the positions of data centers, center = [1, 2, 2], and the positions of the server destinations, destination = [5, 2, 4].